Chapter 12: String Encoding

Strings are made up of a collection of bytes (8 binary digits) that represent the characters that the string contains. In Python 3 string are encoded following the UTF-8 standard, and may contain 1,112,064 different code points (or symbols). This allows Python programs to process strings of all languages, throughout the world. Objectives Upon completion … Continue reading Chapter 12: String Encoding